Adding some more judges, here and there.
[and.git] / COCI / 2010-2011 / Contest #1 - 22.10.2010 / jabuke / jabuke.cpp
blob494f386e7f3c5d019c5877202a53cf153a931d14
1 // Andrés Mejía
2 using namespace std;
3 #include <algorithm>
4 #include <iostream>
5 #include <iterator>
6 #include <numeric>
7 #include <sstream>
8 #include <fstream>
9 #include <cassert>
10 #include <climits>
11 #include <cstdlib>
12 #include <cstring>
13 #include <string>
14 #include <cstdio>
15 #include <vector>
16 #include <cmath>
17 #include <queue>
18 #include <deque>
19 #include <stack>
20 #include <list>
21 #include <map>
22 #include <set>
24 #define foreach(x, v) for (typeof (v).begin() x=(v).begin(); x !=(v).end(); ++x)
25 #define For(i, a, b) for (int i=(a); i<(b); ++i)
26 #define D(x) cout << #x " is " << x << endl
28 const double EPS = 1e-9;
29 int cmp(double x, double y = 0, double tol = EPS) {
30 return (x <= y + tol) ? (x + tol < y) ? -1 : 0 : 1;
33 int main(){
34 int n, m;
35 cin >> n >> m;
36 int ans = 0;
37 int left = 1, right = m;
38 int j; cin >> j;
39 for (int i = 0; i < j; ++i) {
40 int k; cin >> k;
41 while (k < left) {
42 left--;
43 right--;
44 ans++;
46 while (right < k) {
47 right++;
48 left++;
49 ans++;
52 cout << ans << endl;
53 return 0;